mirror of
https://github.com/jlengrand/checkoutCreate.git
synced 2026-03-10 08:11:18 +00:00
11 lines
178 B
Docker
11 lines
178 B
Docker
FROM python:3.9-slim
|
|
|
|
COPY app/ /app
|
|
COPY requirements.txt /app/requirements.txt
|
|
|
|
EXPOSE 8080:8080
|
|
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
|
|
CMD [ "python", "./app.py" ] |