Files
wakurtosis/wls-module/Dockerfile
2023-03-10 12:41:22 +01:00

31 lines
712 B
Docker

# Create the build image
FROM python:3.11-slim AS build-image
# Create the virtualenv
RUN python -m venv /opt/venv
# Use the virtualenv
ENV PATH="/opt/venv/bin:$PATH"
# Perform the installs
COPY requirements.txt .
RUN pip install -r requirements.txt
# Create the production image
FROM python:3.11-slim AS prod-image
LABEL Maintainer="Daimakaimura"
# Copy the requisite files from the build image to the production image
COPY --from=build-image /opt/venv /opt/venv
# Copy the wls files to the production image
WORKDIR /wls
COPY . .
# Deploy the virtualenv in production image
ENV PATH="/opt/venv/bin:$PATH"
ENV PYTHONPATH "${PYTHONPATH}:/wls/src/"
# Set the entrypoint
ENTRYPOINT ["python", "src/wls.py"]