Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ set -e
bundle install

# Create a non-root user and transfer ownership
useradd --no-create-home --shell /bin/bash jekyll
useradd --no-create-home --uid 1000 --shell /bin/bash jekyll
chown -R jekyll:jekyll /app
_SETUP

USER jekyll
USER 1000

# Expose the port that Jekyll will run on
EXPOSE 4000
Expand Down