-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert ":arrow_up: GitHub Actionsの依存 (#541)" This reverts commit e98d86b. Revert "Bump Golang from 1.15 to 1.20 (#540)" This reverts commit 60f9ccc. Revert "ポート番号の修正 (#534)" This reverts commit 3e00b30. Revert "透明な画像を上げると背景が黒くなる問題の修正 (#532)" This reverts commit 241a04e. Revert "Add default value (#535)" This reverts commit c56f2b4. Revert "validatorを追加 (#530)" This reverts commit 2b83f22. Revert "enumにした (#529)" This reverts commit 37e9d27. Revert "X-Showcase-User を debug 時無視するように (#531)" This reverts commit 6808496. Revert "GetItemResponseを追加 (#528)" This reverts commit d3e3d7e. Revert "air と dockerize をやめる (#527)" This reverts commit 2059554.
- Loading branch information
Showing
31 changed files
with
352 additions
and
1,002 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
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
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
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
FROM golang:1.20.0-alpine AS build | ||
FROM golang:1.15.0-alpine AS build | ||
ENV CGO_ENABLED=0 | ||
ENV DOCKERIZE_VERSION v0.6.1 | ||
RUN apk add --update --no-cache git && \ | ||
apk --update add tzdata && \ | ||
cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime && \ | ||
apk del tzdata && \ | ||
rm -rf /var/cache/apk/* | ||
RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION.tar.gz && \ | ||
tar -C /usr/local/bin -xzvf dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION.tar.gz && \ | ||
rm dockerize-alpine-linux-amd64-$DOCKERIZE_VERSION.tar.gz | ||
|
||
WORKDIR /app | ||
RUN go install github.com/cosmtrek/air@latest | ||
|
||
COPY go.mod go.sum ./ | ||
WORKDIR /go/src/github.com/traPtitech/booQ | ||
RUN go get github.com/pilu/fresh | ||
COPY ./go.* ./ | ||
RUN go mod download | ||
|
||
CMD ["air"] | ||
COPY . . |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.