DAS_2024_1/alkin_ivan_lab_2/worker-1/Dockerfile

15 lines
260 B
Docker
Raw Normal View History

2024-12-09 23:49:29 +04:00
# worker-1/Dockerfile
# Stage 1: Build the application
FROM python:3.10-slim as builder
WORKDIR /app
COPY ./main.py .
# Stage 2: Set up the runtime environment
FROM python:3.10-slim
WORKDIR /app
COPY --from=builder /app/main.py .
CMD ["python", "main.py"]