mirror of
https://github.com/vacp2p/wakurtosis.git
synced 2026-01-09 14:58:02 -05:00
31 lines
700 B
Docker
31 lines
700 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 authors="AlbertoSoutullo"
|
|
|
|
# Copy the requisite files from the build image to the production image
|
|
COPY --from=build-image /opt/venv /opt/venv
|
|
|
|
# Copy the gennet files to the production image
|
|
WORKDIR /analysis
|
|
COPY . .
|
|
|
|
# Deploy the virtualenv in production image
|
|
ENV PATH="/opt/venv/bin:$PATH"
|
|
|
|
ENV PYTHONPATH "${PYTHONPATH}:src"
|
|
|
|
# Set the entrypoint
|
|
ENTRYPOINT ["python"] |