Skip to content

Commit

Permalink
fix dockerfile to point to deploy/bases/micro
Browse files Browse the repository at this point in the history
  • Loading branch information
xmlking committed Nov 5, 2019
1 parent 48b3660 commit 981e55c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ARG VERSION=0.0.1
ARG TYPE=srv
ARG TARGET=account
COPY --from=builder /app /app
COPY --from=builder src/deploy/bases/micro/${TARGET}-${TYPE}/config /config
COPY --from=builder src/deploy/bases/micros/${TARGET}-${TYPE}/config /config

# Declare the port on which the webserver will be exposed.
# As we're going to run the executable as an unprivileged user, we can't bind
Expand Down
2 changes: 1 addition & 1 deletion cgo.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ARG VERSION=0.0.1
ARG TYPE=srv
ARG TARGET=account
COPY --from=builder /app /app
COPY --from=builder src/deploy/bases/micro/${TARGET}-${TYPE}/config /config
COPY --from=builder src/deploy/bases/micros/${TARGET}-${TYPE}/config /config

# Declare the port on which the webserver will be exposed.
# As we're going to run the executable as an unprivileged user, we can't bind
Expand Down
4 changes: 2 additions & 2 deletions docs/howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ go test -v -run Integration ./srv/emailer/service
git reset --hard HEAD~1

# Delete Tag local
git tag --delete v0.2.5
git tag --delete v0.2.6
# Delete Tag remote
git push --delete origin v0.2.5
git push --delete origin v0.2.6
```

- How to Push Git Tags with Commit?
Expand Down
2 changes: 1 addition & 1 deletion no_cgo.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ ARG VERSION=0.0.1
ARG TYPE=srv
ARG TARGET=account
COPY --from=builder /app /app
COPY --from=builder src/deploy/bases/micro/${TARGET}-${TYPE}/config /config
COPY --from=builder src/deploy/bases/micros/${TARGET}-${TYPE}/config /config

# Declare the port on which the webserver will be exposed.
# As we're going to run the executable as an unprivileged user, we can't bind
Expand Down

0 comments on commit 981e55c

Please sign in to comment.