Skip to content

Commit

Permalink
update: Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
kainonly committed Sep 15, 2023
1 parent 1bf770e commit fcede14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- run: |
go build -o excel/main ./excel
go build -o schedule/main ./schedule
go build -o schedule/main ./worker
go build -o worker/main ./worker
env:
CGO_ENABLED: 0
GO111MODULE: on
Expand Down
2 changes: 1 addition & 1 deletion excel/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ WORKDIR /app

RUN apk --no-cache add tzdata

ADD excel/main /app/
ADD main /app/

EXPOSE 9000

Expand Down
2 changes: 1 addition & 1 deletion schedule/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ WORKDIR /app

RUN apk --no-cache add tzdata

ADD schedule/main /app/
ADD main /app/

CMD [ "./main" ]
2 changes: 1 addition & 1 deletion worker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ WORKDIR /app

RUN apk --no-cache add tzdata

ADD worker/main /app/
ADD main /app/

CMD [ "./main" ]

0 comments on commit fcede14

Please sign in to comment.