Skip to content

Commit

Permalink
ci 16
Browse files Browse the repository at this point in the history
  • Loading branch information
tonygilkerson committed Jan 12, 2025
1 parent 1a646e6 commit 0ce1927
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
- uses: actions/checkout@v4
- name: Build the Docker image
run: |
docker buildx --progress=plain --platform="linux/amd64" . --file Dockerfile --tag cafe:$(date +%s)
docker buildx --platform="linux/amd64" . --file Dockerfile --tag cafe:$(date +%s)
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
###########################################
FROM docker.io/fredericwernercc/mkdocs-material as dev

RUN whoami
RUN "which mkdir"
RUN [ "whoami" ]
RUN [ "which", "mkdir" ]

# COPY docs ./docs
# COPY mkdocs.yml .
RUN "mkdir -p /home/appuser"
RUN [ "mkdir", "-p", "/home/appuser"
RUN "addgroup -S appuser && adduser -S appuser -G appuser -h /home/appuser"

WORKDIR /home/appuser
Expand Down

0 comments on commit 0ce1927

Please sign in to comment.