Skip to content

Commit

Permalink
fix: unzip in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamfarer committed Jan 6, 2025
1 parent 7fbae4f commit 43861fe
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
FROM alpine:latest as build
FROM alpine:latest AS build

WORKDIR /build

RUN apk add unzip wget && \
wget https://github.com/Dreamfarer/ARMA-3-ARTILLERY-CALCULATOR-ARES/releases/download/tiles-altis-v1.0.0/tiles-altis.zip && \
unzip map.zip && \
rm map.zip
mkdir -p map && \
unzip tiles-altis.zip -d map && \
rm tiles-altis.zip

FROM nginx:latest
COPY --from=build /build/* /usr/share/nginx/html/map/
Expand Down

0 comments on commit 43861fe

Please sign in to comment.