Browse Source

fix: don't send the whole local context to the docker image

Loic Blot 3 years ago
parent
commit
c4b048fbb3
2 changed files with 5 additions and 1 deletions
  1. 4 0
      .dockerignore
  2. 1 1
      Dockerfile

+ 4 - 0
.dockerignore

@@ -0,0 +1,4 @@
+./cmake-build-*
+./build/*
+./cache/*
+Dockerfile

+ 1 - 1
Dockerfile

@@ -49,7 +49,7 @@ RUN mkdir build && \
 	make -j2 && \
 	make install
 
-FROM alpine:3.11
+FROM alpine:3.13
 
 RUN apk add --no-cache sqlite-libs curl gmp libstdc++ libgcc libpq luajit jsoncpp && \
 	adduser -D minetest --uid 30000 -h /var/lib/minetest && \