Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
shawndwells committed Jul 31, 2020
1 parent 529203d commit 2d899b8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,13 @@ RUN ln -s /usr/local/bin/entrypoint.sh /


ARG container_version
ARG BUILD_DATE # BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
ARG VCS_REF # VCS_REF=$(git rev-parse --short HEAD)

# BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ')
ARG BUILD_DATE

# VCS_REF=$(git rev-parse --short HEAD)
ARG VCS_REF


LABEL org.label-schema.build-date=$BUILD_DATE
LABEL org.label-schema.schema-version "1.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ a drop-in replacement for development on Linux hosts, but has not yet been teste
Build the container using the [included Dockerfile](https://github.com/CrowdStrike/dockerfiles/blob/master/Dockerfile) through a command such as:

```shell
$ docker build --no-cache=true --build-arg \
BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
VCS_REF=$(git rev-parse --short HEAD) \
$ docker build --no-cache=true \
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
--build-arg VCS_REF=$(git rev-parse --short HEAD) \
-t falcon-sensor:latest .
```

Expand Down

0 comments on commit 2d899b8

Please sign in to comment.