Merge pull request #4 from docker/remove-arg

Remove unused ARG from Dockerfile
This commit is contained in:
Michael Irwin 2020-03-02 13:47:28 -05:00 committed by GitHub
commit 7ba40de8b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,6 @@ CMD ["mkdocs", "serve", "-a", "0.0.0.0:8000"]
# Do the actual build of the mkdocs site # Do the actual build of the mkdocs site
FROM base AS build FROM base AS build
COPY . . COPY . .
ARG LANGUAGE
RUN mkdocs build RUN mkdocs build
# Extract the static content from the build # Extract the static content from the build