File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ git tag -a v1.0 -m "Release v1.0.0"
150
150
git push origin v1.0
151
151
```
152
152
153
- You can now use the [ GitHub release interface] ( https://github.com/LeoFVO/<tool_name> /releases/new ) to create a new release.
153
+ You can now use the [ GitHub release interface] ( https://github.com/LeoFVO/go4hackers /releases/new ) to create a new release.
154
154
155
155
The release process will automatically:
156
156
Original file line number Diff line number Diff line change @@ -4,20 +4,20 @@ ENV CGO_ENABLED=0
4
4
COPY go.mod /src/
5
5
RUN go mod download
6
6
COPY . .
7
- RUN go build -a -o <tool_name> -trimpath
7
+ RUN go build -a -o go4hackers -trimpath
8
8
9
9
FROM alpine:latest
10
10
11
11
RUN apk add --no-cache ca-certificates \
12
12
&& rm -rf /var/cache/*
13
13
14
14
RUN mkdir -p /app \
15
- && adduser -D <tool_name> \
16
- && chown -R <tool_name>:<tool_name> /app
15
+ && adduser -D go4hackers \
16
+ && chown -R go4hackers:go4hackers /app
17
17
18
- USER <tool_name>
18
+ USER go4hackers
19
19
WORKDIR /app
20
20
21
- COPY --from=builder /src/<tool_name> .
21
+ COPY --from=builder /src/go4hackers .
22
22
23
- ENTRYPOINT [ "./<tool_name> " ]
23
+ ENTRYPOINT [ "./go4hackers " ]
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ Please ensure that your environment match the following requirements :
19
19
To run the website locally :
20
20
21
21
``` bash
22
+ export NEXT_PUBLIC_REPOSITORY=leofvo/go4hackers
22
23
pnpm install
23
24
pnpm dev
24
25
```
You can’t perform that action at this time.
0 commit comments