add dockerfile and move data files
This commit is contained in:
parent
20ff53f8ac
commit
3a90936a16
40
Dockerfile
Normal file
40
Dockerfile
Normal file
@ -0,0 +1,40 @@
|
||||
FROM golang:alpine as builder
|
||||
|
||||
RUN apk add --no-cache \
|
||||
gperf \
|
||||
alpine-sdk \
|
||||
openssl-dev \
|
||||
git \
|
||||
cmake \
|
||||
zlib-dev \
|
||||
linux-headers
|
||||
|
||||
WORKDIR /tmp/_build_tdlib/
|
||||
|
||||
RUN git clone https://github.com/tdlib/td.git /tmp/_build_tdlib/
|
||||
|
||||
RUN mkdir build
|
||||
WORKDIR /tmp/_build_tdlib/build/
|
||||
|
||||
RUN cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr/local ..
|
||||
RUN make -j13
|
||||
RUN cmake --build . --target install
|
||||
RUN make install
|
||||
|
||||
ARG COMMIT=latest
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
RUN GOBIN=/app/ go install git.siteop.biz/chtwrs/gocw@$COMMIT
|
||||
|
||||
FROM alpine:latest
|
||||
|
||||
RUN apk add --no-cache \
|
||||
libstdc++
|
||||
|
||||
WORKDIR /app/
|
||||
|
||||
# Copy the Pre-built binary file from the previous stage
|
||||
COPY --from=builder /app/gocw .
|
||||
# Command to run the executable
|
||||
CMD ["./gocw"]
|
7
main.go
7
main.go
@ -13,9 +13,6 @@ import (
|
||||
"time"
|
||||
|
||||
"github.com/Arman92/go-tdlib"
|
||||
// "github.com/go-web/tokenizer"
|
||||
// "database/sql"
|
||||
// _ "github.com/go-sql-driver/mysql"
|
||||
)
|
||||
|
||||
type ChatWarsWithdraw struct {
|
||||
@ -68,8 +65,8 @@ func main() {
|
||||
UseFileDatabase: true,
|
||||
UseChatInfoDatabase: true,
|
||||
UseTestDataCenter: false,
|
||||
DatabaseDirectory: "./tdlib-db",
|
||||
FileDirectory: "./tdlib-files",
|
||||
DatabaseDirectory: "./data/tdlib-db",
|
||||
FileDirectory: "./data/tdlib-files",
|
||||
IgnoreFileNames: false,
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user