Skip to content

Commit

Permalink
Revert "ci: allow running on pull_requests."
Browse files Browse the repository at this point in the history
This reverts commit a6e75f0.
  • Loading branch information
ronoaldo committed Nov 17, 2023
1 parent a6e75f0 commit 3802c3d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
- '**issue**'
- '**patch**'
- 'ronoaldo/**'
pull_request:

env:
REGISTRY: ghcr.io
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage
FROM debian:bookworm AS builder
FROM debian:bullseye AS builder

# Build-time arguments
ARG MINETEST_VERSION=master
Expand Down Expand Up @@ -71,9 +71,9 @@ RUN cmake /usr/src/minetest \
make install

# Bundle only the runtime dependencies
FROM debian:bookworm-slim AS runtime
FROM debian:bullseye AS runtime
RUN apt-get update &&\
apt-get install libcurl3-gnutls libgcc-s1 libgmp10 libjsoncpp25 \
apt-get install libcurl3-gnutls libgcc-s1 libgmp10 libjsoncpp24 \
libleveldb1d libncursesw6 libpq5 \
libspatialindex6 libsqlite3-0 libstdc++6 libtinfo6 zlib1g libzstd1 \
adduser git -yq &&\
Expand Down
3 changes: 1 addition & 2 deletions sample/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#FROM ghcr.io/ronoaldo/minetestserver:stable-5
FROM minetestserver:latest
FROM ghcr.io/ronoaldo/minetestserver:stable-5

# Install mods from ContentDB
WORKDIR /usr/share/minetest
Expand Down

0 comments on commit 3802c3d

Please sign in to comment.