Skip to content

Commit 5e2a9bc

Browse files
authored
dockerfile: install git
1 parent 0bf712e commit 5e2a9bc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM debian:latest
33
LABEL org.opencontainers.image.source=https://github.com/gbdev/gb-asm-tutorial
44
SHELL ["bash", "-lc"]
55
RUN apt update
6-
RUN apt install curl -y
6+
RUN apt install curl git -y
77

88
# Install rust and mdbook
99
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
@@ -17,4 +17,4 @@ WORKDIR /code
1717
# Serve gb-asm-tutorial
1818
# See https://github.com/rust-lang/mdBook/issues/2226
1919
RUN mdbook build
20-
CMD mdbook serve --hostname 0.0.0.0 & mdbook watch
20+
CMD mdbook serve --hostname 0.0.0.0 & mdbook watch

0 commit comments

Comments
 (0)