mirror of
https://github.com/mempool/mempool.git
synced 2024-12-29 09:44:26 +01:00
26 lines
433 B
Docker
26 lines
433 B
Docker
|
FROM node:12-buster-slim AS builder
|
||
|
|
||
|
WORKDIR /build
|
||
|
COPY . .
|
||
|
RUN apt-get update
|
||
|
RUN apt-get install -y build-essential python3 pkg-config
|
||
|
RUN npm ci --production
|
||
|
RUN npm run build
|
||
|
|
||
|
FROM node:12-buster-slim
|
||
|
|
||
|
WORKDIR /backend
|
||
|
|
||
|
COPY --from=builder /build/ .
|
||
|
|
||
|
RUN chmod +x /backend/start.sh
|
||
|
RUN chmod +x /backend/wait-for-it.sh
|
||
|
|
||
|
RUN chown -R 1000:1000 /backend && chmod -R 755 /backend
|
||
|
|
||
|
USER 1000
|
||
|
|
||
|
EXPOSE 8999
|
||
|
|
||
|
CMD ["/backend/start.sh"]
|