Files
core/Dockerfile

14 lines
194 B
Docker
Raw Normal View History

2022-11-17 11:34:45 +03:00
FROM python:latest
2022-11-10 23:44:04 +01:00
EXPOSE 8080
RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN set -ex && pip install -r requirements.txt
COPY . .