Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openfisca-tunisia-fetcher
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dbnomics-fetchers
openfisca-tunisia-fetcher
Commits
e69afcc5
Commit
e69afcc5
authored
1 month ago
by
dbnomics-fetcher-ops
Committed by
Christophe Benz
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
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
Stage:
Stage:
Stage:
in 2 minutes and 3 seconds
Changes
1
Pipelines
4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Dockerfile
+21
-0
21 additions, 0 deletions
Dockerfile
with
21 additions
and
0 deletions
Dockerfile
0 → 100644
+
21
−
0
View file @
e69afcc5
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
. .
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment