mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-26 21:27:38 +02:00
update images
This commit is contained in:
parent
db20d4986f
commit
c7018a8b82
1
.github/workflows/verify.yml
vendored
1
.github/workflows/verify.yml
vendored
@ -27,7 +27,6 @@ jobs:
|
||||
container: sfja/h5-mst-ci:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
- run: rustup default stable
|
||||
- name: Check
|
||||
working-directory: ./game
|
||||
run: cargo check
|
||||
|
||||
@ -1,13 +1,14 @@
|
||||
FROM docker.io/alpine:3.23.3 AS builder
|
||||
FROM alpine:3.23 AS builder
|
||||
WORKDIR /workspace
|
||||
RUN apk add build-base
|
||||
RUN apk add build-base mosquitto-dev
|
||||
COPY Makefile .
|
||||
COPY src src
|
||||
COPY tests tests
|
||||
RUN make RELEASE=1 build/backend
|
||||
|
||||
FROM docker.io/alpine:3.23.3 AS runner
|
||||
FROM alpine:3.23 AS runner
|
||||
WORKDIR /workspace
|
||||
RUN apk add libstdc++
|
||||
RUN apk add libstdc++ mosquitto-libs
|
||||
COPY --from=builder /workspace/build/backend /workspace
|
||||
CMD ["/workspace/backend"]
|
||||
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
FROM alpine:edge
|
||||
RUN apk add --no-cache curl build-base clang22-extra-tools sdl3-dev mosquitto
|
||||
RUN apk add --no-cache curl build-base clang22-extra-tools mosquitto-dev sdl3-dev
|
||||
|
||||
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
|
||||
ENV PATH="/root/.cargo/bin:${PATH}"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user