Skip to content

Commit

Permalink
Cleaning up Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefHolland committed Feb 22, 2024
1 parent a358296 commit 0cf98ef
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ RUN pip install pipenv \
tini \
bash \
git \
# Added to build supporting binaries
libffi-dev \
build-base \
# The following apk package is necessary for pyenv functionality
Expand All @@ -70,8 +71,11 @@ RUN pip install pipenv \
# The following commands are necessary because pre-commit adds -u os.uid():os.gid() to the docker run
&& chmod o+w /opt/goat/log \
&& mkdir -p /.local \
&& chmod o+w /.local
&& chmod o+w /.local \
#####################################################################################################
# Remove unnecessary packages
&& apk del libffi-dev \
build-base

WORKDIR /goat/

Expand Down
1 change: 0 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ black = "*"
yamllint = "*"
pygithub = "*"
openai = "*"
wheel = "*"

[dev-packages]
pre-commit = "*"
Expand Down
12 changes: 6 additions & 6 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0cf98ef

Please sign in to comment.