Fix Alpine Docker lock to 3.13 (#1568)

This issue relates to a build issue on the official docker build
system where Alpine Linux 3.14 will not currently build so fix
the Alpine version to 3.13.

Make sure build and runtime image used in building the docker
container are the same Alpine version to remove runtime issues.
This commit is contained in:
nrandon 2021-07-13 20:13:00 +01:00 committed by GitHub
parent 6d92bc8210
commit 72905b951f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ RUN cd /usr/src/onedrive/ && \
make && \
make install
FROM alpine
FROM alpine:3.13
ENTRYPOINT ["/entrypoint.sh"]
RUN apk add --no-cache \
bash libcurl libgcc shadow sqlite-libs ldc-runtime && \