cnc-service/Dockerfile

19 lines
349 B
Docker
Raw Normal View History

2020-12-06 11:26:28 +01:00
FROM python:3.9-slim
2020-07-17 16:31:49 +02:00
ENV TZ Europe/Budapest
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 ./src .
EXPOSE 8080
2021-08-09 11:33:26 +02:00
ENTRYPOINT ["gunicorn", "-b", "0.0.0.0:8080", "app:app"]