-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker-Integration fuer lokale Entwicklung und Github Packages/Dockerhub #30
base: develop
Are you sure you want to change the base?
Conversation
Moin, |
Denke das sollte kein Problem sein. |
337b974
to
3df108c
Compare
be85882
to
b3ffaec
Compare
@Schrolli91 Habe das ganze hier auch mal weiter gebracht. Bisher werden die Images noch auf mein "privates" Container-Repository geschoben: Die Versionierung muss ggf. mit rein. Außerdem sind bei frischen Installationen von pyyaml die Keys wohl case-sensitive. Das hatte ich angepasst, nachdem ich Ärger damit hatte. Schau bei Gelegenheit mal drüber. |
Schau ich mit im Laufe der Woche mal an - Danke dafür! |
4cc5020
to
fa72f57
Compare
… config for paths in Dockerfile, add Dockerfile for build,
…fig volume to docker compose file, fix Dockerfile
12d3006
to
04d2a53
Compare
@Schrolli91 Habe die Emails angepasst und das maintainer-label durch das authors-label aus der opencontainers specification ersetzt. (https://github.com/opencontainers/image-spec/blob/main/annotations.md) |
|
||
FROM build-base AS rtl_fm | ||
ARG RTL_SDR_VERSION=0.6.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wieso sind die Versionsnummern weggefallen?
Das wurde damals ja extra so gemacht, weil es Probleme mit einer neueren Version gab.
So konnte man zum Build explizit vorgeben, was genutzt werden.
Same @ rtl_fm
Durch das ARG konnte man die Nummer dann nämlich auch zum Buildzeitpunkt übergeben.
RUN apk add libusb-dev libpulse | ||
RUN pip3 install pyyaml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wieso zweimal RUN direkt nacheinander?
Am besten beide Befehle in einen Verknüpfen.
Das reduziert die Container Größe.
No description provided.