Skip to content
Snippets Groups Projects
Commit e69afcc5 authored by dbnomics-fetcher-ops's avatar dbnomics-fetcher-ops Committed by Christophe Benz
Browse files

Add Dockerfile from template found in pipeline configuration YAML file

parent 0c2763b6
No related branches found
No related tags found
No related merge requests found
Pipeline #484137 passed with stages
in 2 minutes and 3 seconds
FROM python:3.10-slim-bullseye
# Uncomment the following command to install a Debian package
# RUN apt-get update \
# && apt-get install -y xxx \
# && rm -rf /var/lib/apt/lists/*
# Env variables that configure Python to run in a container:
# do not keep dependencies downloaded by "pip install"
ENV PIP_NO_CACHE_DIR=1
# do not write "*.pyc" files
ENV PYTHONDONTWRITEBYTECODE=1
# do not buffer input/output operations, displaying prints and log messages immediately
ENV PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment