Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Amaototi committed Jun 11, 2023
1 parent c024bd8 commit 66d820d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:latest AS build
FROM golang
RUN apt update && apt install -y mecab libmecab-dev mecab-ipadic-utf8
ENV GO111MODULE on
ENV CGO_LDFLAGS -L/usr/lib/x86_64-linux-gnu -lmecab -lstdc++
Expand All @@ -10,4 +10,4 @@ ENV GOARCH ${GOARCH}
ENV CGO_ENABLED 1
WORKDIR /go/src/Noa
RUN go build -o noa .
CMD ["./noa"]
CMD ["./noa"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Misskey Bot to post notes on the Markov chain.
## Docker
1. [Dowload config.yml](https://raw.githubusercontent.com/tpc3/Noa/main/config.yml)
2. Enter your token and host server to config.yml
3. `docker run --rm -it -v $(PWD)config.yml:/go/src/Noa/config.yml ghcr.io/tpc3/noa`
3. `docker run --rm -it -v $(PWD)/config.yml:/go/src/Noa/config.yml ghcr.io/tpc3/noa`

## Build
1. Clone thos repository
Expand Down

0 comments on commit 66d820d

Please sign in to comment.