fix prod dockerfile build error

This commit is contained in:
blek 2023-11-01 00:46:54 +10:00
parent 052d40dc8c
commit 3cba73fc1a
Signed by: blek
GPG Key ID: 14546221E3595D0C
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,8 @@ version: '3.7'
services: services:
filed: filed:
build: build:
context: filed context: .
dockerfile: Dockerfile.prod dockerfile: filed/Dockerfile.prod
networks: networks:
bfile: bfile:
volumes: volumes:

View File

@ -2,7 +2,8 @@
FROM rust:alpine as builder FROM rust:alpine as builder
WORKDIR /opt/build WORKDIR /opt/build
COPY . . COPY filed .
COPY ./.git ./.git
RUN apk add --no-cache musl-dev upx nodejs yarn && \ RUN apk add --no-cache musl-dev upx nodejs yarn && \
yarn global add uglify-js yarn global add uglify-js