9 lines
182 B
Docker
9 lines
182 B
Docker
FROM python:slim
|
|
WORKDIR /app
|
|
|
|
EXPOSE 80
|
|
COPY requirements.txt .
|
|
RUN apt-get update && apt-get install -y gcc && pip install -r requirements.txt
|
|
COPY . .
|
|
CMD ["python", "server.py"]
|