8 lines
251 B
Docker
8 lines
251 B
Docker
|
|
# werewolf — werewolf.famzheng.me
|
||
|
|
# Build context = repo root,路径都是 apps/werewolf/...
|
||
|
|
FROM scratch
|
||
|
|
COPY target/x86_64-unknown-linux-musl/release/werewolf /werewolf
|
||
|
|
COPY apps/werewolf/frontend/dist /dist
|
||
|
|
EXPOSE 8080
|
||
|
|
ENTRYPOINT ["/werewolf"]
|