Skip to content

Commit

Permalink
Fix for new repo location, also testing a long commit message with th…
Browse files Browse the repository at this point in the history
…e new deployments UI
  • Loading branch information
paulgb committed Aug 2, 2024
1 parent e9a0295 commit 5c21f7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# We use the Jamsocket image to extract the binary, so that
# we can run `jamsocket build`.
FROM ghcr.io/drifting-in-space/stateroom:latest as stateroom
FROM ghcr.io/jamsocket/stateroom:latest as stateroom

# The main build step happens in the Rust image.
FROM rust:latest AS build
Expand All @@ -14,7 +14,7 @@ RUN rustup target add wasm32-unknown-unknown

# Clone Aper repo, which includes the Drop Four game.
WORKDIR /work
RUN git clone https://github.com/drifting-in-space/aper
RUN git clone https://github.com/jamsocket/aper

# Build the demo game.
WORKDIR /work/aper/examples/drop-four
Expand All @@ -24,6 +24,6 @@ RUN /stateroom build
# but now we copy the built artifacts into it. The Stateroom
# image will run `stateroom serve /dist` by default, so we
# put the built files there.
FROM ghcr.io/drifting-in-space/stateroom:latest
FROM ghcr.io/jamsocket/stateroom:latest

COPY --from=build /work/aper/examples/drop-four/dist /dist

0 comments on commit 5c21f7b

Please sign in to comment.