mirror of
https://github.com/aljazceru/sciencestr.git
synced 2025-12-16 21:44:26 +01:00
11 lines
174 B
Plaintext
11 lines
174 B
Plaintext
# Dockerfile-api
|
|
FROM python:3.9
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements-api.txt ./
|
|
RUN pip install --no-cache-dir -r requirements-api.txt
|
|
|
|
COPY api.py .
|
|
|
|
CMD ["python", "./api.py"] |