Skip to content
This repository has been archived by the owner on Feb 15, 2025. It is now read-only.

Commit

Permalink
Merge pull request #168 from defenseunicorns/modify-dockerfiles
Browse files Browse the repository at this point in the history
Modify dockerfiles
  • Loading branch information
Gerred Dillon authored Aug 31, 2023
2 parents edd5df7 + 774a657 commit 1568345
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM cgr.dev/chainguard/go:1.20 as build
FROM cgr.dev/chainguard/go:latest as build

WORKDIR /work

Expand Down
2 changes: 1 addition & 1 deletion leapfrog-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ image:
# down and only change it if you explicitly want to upgrade the Weaviate
# version.

tag: 0.2.1
tag: 0.3.2

domain: "###ZARF_VAR_DOMAIN###"

Expand Down
2 changes: 1 addition & 1 deletion leapfrogai/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV USER='user'
RUN groupadd -r user && useradd -r -g $USER $USER


RUN mkdir -p /home/$USER
RUN mkdir -p /home/$USER/app

RUN chown -R $USER /home/$USER
RUN chmod a+rwx -R /home/$USER
Expand Down
2 changes: 1 addition & 1 deletion models/llms/mpt-7b-chat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY get_model.py get_model.py
RUN python3 get_model.py

# Move the rest of the python files (most likely place layer cache will be invalidated)
COPY --chown=user:user *.py .
COPY --chown=user:user *.py ./

# Publish port
EXPOSE 50051:50051
Expand Down
2 changes: 1 addition & 1 deletion models/llms/stablelm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY get_models.py get_models.py
# # Get model weights and tokenizer
RUN python3 get_models.py

COPY *.py .
COPY *.py ./

# Publish port
EXPOSE 50051:50051
Expand Down

0 comments on commit 1568345

Please sign in to comment.