[add] Forcing proxy refresh on container run
This commit is contained in:
18
Dockerfile
18
Dockerfile
@@ -1,3 +1,4 @@
|
||||
# Build stage
|
||||
FROM golang:1.15-alpine AS build
|
||||
|
||||
ARG VERSION
|
||||
@@ -13,8 +14,23 @@ RUN go mod download
|
||||
RUN go build -ldflags "-s -w -X ktbs.dev/mubeng/common.Version=${VERSION}" \
|
||||
-o ./bin/mubeng ./cmd/mubeng
|
||||
|
||||
# Production build
|
||||
FROM python:3.10-alpine3.16
|
||||
|
||||
COPY --from=build /app/bin/mubeng /bin/mubeng
|
||||
|
||||
# Installing the python scripts
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt /app
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY scrape_proxies.py /app
|
||||
|
||||
COPY entrypoint.sh /app
|
||||
|
||||
ENV HOME /
|
||||
ENTRYPOINT ["/bin/mubeng"]
|
||||
|
||||
VOLUME /mubeng/
|
||||
|
||||
ENTRYPOINT ["/app/entrypoint.sh"]
|
||||
|
||||
Reference in New Issue
Block a user