Skip to content
Snippets Groups Projects
Verified Commit d8e5e6e1 authored by Sheogorath's avatar Sheogorath :european_castle:
Browse files

feat(synadm): Switch image build process to requirements.txt

This patch tries to improve reproduciblity by using a
`requirements.txt`, this should not only pin a version, but
also allow renovate to update it automatically on a regular
basis, making updates more visible.
parent 8fed08aa
No related branches found
No related tags found
No related merge requests found
Pipeline #15964 passed
release=0.1.0 release=0.2.0
FROM docker.io/library/python:3 FROM docker.io/library/python:3
COPY requirements.txt .
RUN true \ RUN true \
&& pip3 install synadm \ && pip3 install -r requirements.txt \
&& mkdir -p /workspace \ && mkdir -p /workspace \
&& true && true
......
synadm==0.37.1
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