Merge pull request #86 from TestingBytes/patch-1

Update Dockerfile to change apk repositories to v3.20/main and edge/community
This commit is contained in:
DCsunset 2024-12-30 22:14:59 -05:00 committed by GitHub
commit c6843b6958
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,7 @@
FROM alpine:latest FROM alpine:latest
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories RUN echo "https://dl-cdn.alpinelinux.org/alpine/v3.20/main" > /etc/apk/repositories
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
RUN apk --no-cache add nodejs npm nginx task3 python3 build-base RUN apk --no-cache add nodejs npm nginx task3 python3 build-base
COPY ./frontend /src/frontend COPY ./frontend /src/frontend