10 lines
164 B
Docker
10 lines
164 B
Docker
FROM python:slim
|
|
WORKDIR /app
|
|
|
|
EXPOSE 8080
|
|
ADD nginx.conf.sigil ./
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
COPY . .
|
|
CMD ["python", "server.py"]
|