Skip to content

Commit a106614

Browse files
committed
Typo and documentation fixes in the Dockerfile
1 parent accf091 commit a106614

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/deploy/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,16 @@
1515
# Main Dockerfile of the project. It creates an image that serves the application. This image should
1616
# be built from the dist directory.
1717

18-
# Scratch can be used as a base image because the backend is compiled to include all
18+
# Scratch can be used as the base image because the backend is compiled to include all
1919
# its dependencies.
2020
FROM scratch
2121
MAINTAINER Piotr Bryk <[email protected]>
2222

23-
# Add all files from current working directory to the root of the image, i.e., copy dist cirectory
23+
# Add all files from current working directory to the root of the image, i.e., copy dist directory
2424
# layout to the root directory.
2525
ADD . /
2626

2727
# The port that the application listens on.
28-
# TODO(bryk): Parametrize this.
28+
# TODO(bryk): Parametrize this argument so that other build tools are aware of the exposed port.
2929
EXPOSE 8080
3030
ENTRYPOINT ["/console"]

0 commit comments

Comments
 (0)