-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed packr from Dockerfile (#128)
- Loading branch information
1 parent
8ed7277
commit 81bd3ec
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
FROM golang:1.21 AS build | ||
|
||
# INSTALL DEPENDENCIES | ||
RUN go install github.com/gobuffalo/packr/v2/[email protected] | ||
COPY go.mod go.sum /src/ | ||
RUN cd /src && go mod download | ||
|
||
|
@@ -27,4 +26,4 @@ USER $USER | |
WORKDIR $HOME | ||
|
||
EXPOSE 7900 | ||
CMD ["/bin/sh", "-c", "/app/dsrelay"] | ||
CMD ["/app/dsrelay"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters