Files
pybeemo/Dockerfile
2025-04-28 10:01:03 +02:00

16 lines
232 B
Docker

# Init image
FROM python:slim
WORKDIR /app
# Install requirements
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Import app
COPY pybeemo .
RUN chmod +x pybeemo
# Run it
EXPOSE 8000
CMD ["./pybeemo"]