Skip to content
This repository has been archived by the owner on Nov 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #98 from yoshihiro-shu/yoshi/fix/docker-build-err
Browse files Browse the repository at this point in the history
add: tzdata in image
  • Loading branch information
yoshihiro-shu authored Nov 10, 2023
2 parents 14c0e7a + 3e51a1f commit 83c6859
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ FROM golang:1.21.4-alpine3.18 as builder

WORKDIR /usr/src/app

# tzdata パッケージのインストール
RUN apt-get update && apt-get install -y tzdata

COPY ./backend/go.mod ./backend/go.sum ./
RUN go mod download && go mod verify
COPY ./backend .
Expand Down

0 comments on commit 83c6859

Please sign in to comment.