Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify dockerfiles #168

Merged
merged 2 commits into from
Aug 31, 2023
Merged
Show file tree
Hide file tree
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
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
Loading