core/Dockerfile

10 lines
281 B
Docker
Raw Normal View History

2022-11-28 14:55:30 +00:00
FROM python:3.10
2022-12-02 13:49:00 +00:00
LABEL com.dokku.docker-image-labeler/alternate-tags=['discoursio.api']
2022-11-10 22:44:04 +00:00
EXPOSE 8080
2022-11-28 14:55:30 +00:00
ADD nginx.conf.sigil ./
2022-11-10 22:44:04 +00:00
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 . .