Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tttol committed Jul 2, 2024
1 parent c835817 commit cdf2424
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM golang:latest
WORKDIR /app
COPY go.mod .
# COPY go.sum .
RUN go mod downloadjjj
RUN go mod download
COPY . .

CMD ["go", "run", "main.go"]
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ if [ $# != 1 ]; then
echo "example: ./release.sh 1.0"
exit 1
fi

docker build -t mos3:$1 .
docker tag mos3:$1 tttol/mos3:$1
docker tag mos3:$1 tttol/mos3:latest
docker push tttol/mos3:$1
Expand Down

0 comments on commit cdf2424

Please sign in to comment.