mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-06-15 05:04:17 -06:00
8 lines
185 B
Docker
8 lines
185 B
Docker
# syntax=docker/dockerfile:1
|
|
FROM python:3.10-slim
|
|
WORKDIR /code
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
EXPOSE 5000
|
|
COPY . .
|
|
CMD ["python", "app.py"] |