Some checks failed
Deploy to discoursio-api / deploy (push) Failing after 1m22s
This reverts commit fbd0e03a33
.
12 lines
215 B
Docker
12 lines
215 B
Docker
FROM python:slim
|
|
WORKDIR /app
|
|
|
|
EXPOSE 8080
|
|
ADD nginx.conf.sigil ./
|
|
COPY requirements.txt .
|
|
RUN apt update && apt install -y git gcc curl postgresql
|
|
RUN pip install -r requirements.txt
|
|
COPY . .
|
|
|
|
CMD python server.py
|