slash at the end

This commit is contained in:
cupcakearmy 2021-05-04 19:45:19 +02:00
parent b3886cc6fc
commit 70382a63ed
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
FROM node:16-alpine as CLIENT FROM node:16-alpine as CLIENT
WORKDIR /tmp WORKDIR /tmp
COPY ./client . COPY ./client ./
RUN npm ci RUN npm ci
RUN npm run build RUN npm run build
@ -10,7 +10,7 @@ FROM rust:1.51-alpine as RUST
WORKDIR /tmp WORKDIR /tmp
RUN apk add libc-dev openssl-dev alpine-sdk RUN apk add libc-dev openssl-dev alpine-sdk
COPY ./Cargo* . COPY ./Cargo* ./
COPY ./src ./src COPY ./src ./src
RUN cargo build --release RUN cargo build --release