JanetBackEnd/Dockerfile

17 lines
256 B
Docker
Raw Permalink Normal View History

2023-04-21 04:36:45 +02:00
FROM python:3.8
2023-03-30 15:17:54 +02:00
2023-04-21 01:16:28 +02:00
WORKDIR /backend_janet
2023-03-30 15:17:54 +02:00
2023-08-03 11:20:23 +02:00
COPY requirements_simple.txt .
2023-03-30 15:17:54 +02:00
2023-08-30 12:08:23 +02:00
ARG version_info
ENV FLASK_APP_VERSION_INFO=${version_info}
2023-08-03 11:20:23 +02:00
RUN pip install -r requirements_simple.txt
2023-03-30 15:17:54 +02:00
2023-04-20 18:09:04 +02:00
RUN rm -fr /root/.cache/*
2023-04-07 03:23:01 +02:00
COPY . .
2023-08-03 11:20:23 +02:00
ENTRYPOINT ["python", "main_simple.py"]