You've already forked Promocode-API
mirror of
https://github.com/devitq/Promocode-API.git
synced 2026-06-10 03:22:34 +00:00
11 lines
152 B
Docker
11 lines
152 B
Docker
FROM python:3.12-alpine3.21
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD [ "python", "./main.py" ]
|