Skip to content
Snippets Groups Projects
Commit c4c04cdb authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

Merge branch 'f-local-debian-repo' into 'dev'

Using local debian repo: Speed up the image building.

See merge request !69
parents 2ea500a6 b62b78c3
No related branches found
No related tags found
2 merge requests!71Release 0.9,!69Using local debian repo: Speed up the image building.
Pipeline #29008 passed
......@@ -14,7 +14,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed ###
* Set PyYAML dependency back to PyYaml>=5.4.1 (from 6.0) for better
compatibility with docker-compose)
compatibility with docker-compose
* Use Debian mirrors at Netcup for pipeline tests.
### Deprecated ###
......
FROM debian:latest
# Use local package repository
COPY sources.list.local /etc/apt/
RUN mv /etc/apt/sources.list /etc/apt/sources.list.orig
RUN cat /etc/apt/sources.list.local /etc/apt/sources.list.orig > /etc/apt/sources.list
RUN apt-get update && \
apt-get install -y \
pylint3 python3-pip tox git \
......
# Local repositories at Netcup
deb http://debian.netcup.net/debian/ buster main
deb http://mirrors.n-ix.net/debian-security buster/updates main
deb http://debian.netcup.net/debian/ buster-updates main
# The original content follows here:
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment