b1438870f0
- Introduced iat.yaml configuration files for both the scraper and web applications, defining essential settings such as database connections, logging configurations, and scraping parameters. - Updated the Dockerfiles for both applications to include the new iat.yaml files, ensuring they are available in the container environment for runtime configuration. - This enhancement improves the maintainability and configurability of both applications, allowing for easier adjustments to settings without code changes.
24 lines
593 B
Docker
24 lines
593 B
Docker
ARG GO_VERSION=1.23
|
|
ARG BASH_VERSION=5.0
|
|
|
|
FROM golang:${GO_VERSION} AS go-builder
|
|
|
|
WORKDIR /go/src/company/tm_back
|
|
|
|
COPY . .
|
|
COPY cmd/web/iat.yaml /go/bin/config.yaml
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -o web-build ./cmd/web/main.go
|
|
|
|
FROM bash:${BASH_VERSION}
|
|
RUN apk --no-cache add busybox-suid curl rsync tzdata tcpdump tree ca-certificates s-nail \
|
|
&& ln -s /usr/bin/mail /usr/bin/s-nail \
|
|
&& mkdir -p /go/bin/media /go/bin/log /go/bin/config
|
|
WORKDIR /go/bin
|
|
|
|
COPY --from=go-builder /go/src/company/tm_back/web-build .
|
|
|
|
EXPOSE 8090
|
|
|
|
ENTRYPOINT /go/bin/web-build
|