Skip to content

Commit

Permalink
build: Update alpine to 3.15 (#3937)
Browse files Browse the repository at this point in the history
Fixes missing cryptopp during builds...for now
  • Loading branch information
kornholi authored and DSpeichert committed May 9, 2022
1 parent 225ce3f commit 32c7153
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM alpine:3.13.0 AS build
FROM alpine:3.15.0 AS build
# crypto++-dev is in edge/testing
RUN apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
binutils \
boost-dev \
build-base \
Expand All @@ -21,9 +21,9 @@ COPY CMakeLists.txt /usr/src/forgottenserver/
WORKDIR /usr/src/forgottenserver/build
RUN cmake .. && make

FROM alpine:3.13.0
FROM alpine:3.15.0
# crypto++ is in edge/testing
RUN apk add --no-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
boost-iostreams \
boost-system \
boost-filesystem \
Expand Down

0 comments on commit 32c7153

Please sign in to comment.