Update 'Dockerfile'

This commit is contained in:
Torma Kristóf 2020-10-27 15:16:39 +01:00
parent 8a953c446c
commit 9177ecfb1f
1 changed files with 1 additions and 4 deletions

View File

@ -5,14 +5,11 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
WORKDIR /app
ARG RELEASE_ID
ENV RELEASE_ID ${RELEASE_ID:-""}
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
COPY app.py ./
EXPOSE 8080