removed source:, added repository:

This commit is contained in:
Paul Gauthier 2024-06-05 15:04:17 -07:00
parent 4afc0be2e2
commit a37f8f5e95
3 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,7 @@ FROM bretfisher/jekyll-serve
WORKDIR /site
# Copy the current directory contents into the container at /srv/jekyll
COPY . /site
COPY website /site
# Install any needed packages specified in Gemfile
RUN bundle install --retry 5 --jobs 20

View file

@ -3,7 +3,7 @@
# Run the Docker container
docker run \
--rm \
-v "$PWD:/site" \
-v "$PWD/website:/site" \
-p 4000:4000 \
-e HISTFILE=/site/.bash_history \
--entrypoint /bin/bash \