We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6dc6a4 commit ef9b7b0Copy full SHA for ef9b7b0
.github/workflows/docker.yaml
@@ -12,7 +12,7 @@ jobs:
12
steps:
13
14
- name: Checkout ${{ github.repository }}
15
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
16
17
- name: Collect build context
18
id: context
Dockerfile
@@ -3,7 +3,7 @@
3
ARG ALPINE_TAG=3.22
4
5
# Builder stage
6
-FROM alpine:${ALPINE_TAG} as builder
+FROM alpine:${ALPINE_TAG} AS builder
7
8
ARG MONERO_TAG
9
RUN test -n "${MONERO_TAG}"
@@ -91,7 +91,7 @@ RUN set -ex && \
91
92
93
# Runtime stage
94
-FROM alpine:${ALPINE_TAG} as runtime
+FROM alpine:${ALPINE_TAG} AS runtime
95
96
RUN set -ex && \
97
apk update && \
0 commit comments