mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-22 17:31:03 +01:00
master镜像nginx启动失败 Break change: Dockerfile.alpine -> Dockerfile.master.alpine Feture: 增加Dockerfile.worker.alpine 文件
78 lines
1.9 KiB
Docker
78 lines
1.9 KiB
Docker
FROM golang:1.12-alpine AS backend-build
|
|
|
|
WORKDIR /go/src/app
|
|
COPY ./backend .
|
|
|
|
ENV GO111MODULE on
|
|
ENV GOPROXY https://mirrors.aliyun.com/goproxy/
|
|
|
|
RUN go install -v ./...
|
|
|
|
FROM node:8.16.0-alpine AS frontend-build
|
|
|
|
ADD ./frontend /app
|
|
WORKDIR /app
|
|
|
|
# install frontend
|
|
RUN npm install -g yarn && yarn install --registry=https://registry.npm.taobao.org
|
|
|
|
RUN npm run build:prod
|
|
|
|
# images
|
|
FROM python:alpine
|
|
|
|
ADD . /app
|
|
|
|
|
|
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories
|
|
|
|
# install packages
|
|
RUN apk update && apk add --no-cache --virtual .build-deps \
|
|
gcc \
|
|
linux-headers \
|
|
musl-dev \
|
|
libffi-dev \
|
|
libxml2-dev \
|
|
libxslt-dev \
|
|
openssl-dev
|
|
|
|
# install backend
|
|
RUN pip install scrapy pymongo bs4 requests -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|
|
# copy backend files
|
|
COPY --from=backend-build /go/src/app/conf ./conf
|
|
COPY --from=backend-build /go/bin/crawlab /usr/local/bin
|
|
|
|
# install nginx
|
|
RUN apk add --no-cache nginx openrc
|
|
|
|
RUN apk del .build-deps
|
|
# copy frontend files
|
|
COPY --from=frontend-build /app/dist /app/dist
|
|
COPY --from=frontend-build /app/conf/crawlab.conf /etc/nginx/conf.d
|
|
|
|
VOLUME [ “/sys/fs/cgroup” ]
|
|
|
|
RUN sed -i 's/#rc_sys=""/rc_sys="lxc"/g' /etc/rc.conf && \
|
|
echo 'rc_provide="loopback net"' >> /etc/rc.conf && \
|
|
sed -i 's/^#\(rc_logger="YES"\)$/\1/' /etc/rc.conf && \
|
|
sed -i '/tty/d' /etc/inittab && \
|
|
sed -i 's/hostname $opts/# hostname $opts/g' /etc/init.d/hostname && \
|
|
sed -i 's/mount -t tmpfs/# mount -t tmpfs/g' /lib/rc/sh/init.sh && \
|
|
sed -i 's/cgroup_add_service /# cgroup_add_service /g' /lib/rc/sh/openrc-run.sh && \
|
|
rm -rf /var/cache/apk/* && \
|
|
mkdir -p /run/openrc && \
|
|
touch /run/openrc/softlevel && \
|
|
/sbin/openrc
|
|
|
|
# working directory
|
|
WORKDIR /app/backend
|
|
|
|
# frontend port
|
|
EXPOSE 8080
|
|
|
|
# backend port
|
|
EXPOSE 8000
|
|
|
|
# start backend
|
|
CMD ["/bin/sh", "/app/docker_init.sh"] |