Remove rustpad-server specifier

This commit is contained in:
Eric Zhang 2021-11-11 01:11:41 -05:00
parent 73a8461da6
commit 9a5f0959d2

View file

@ -2,8 +2,8 @@ FROM rust:alpine as backend
WORKDIR /home/rust/src
RUN apk --no-cache add musl-dev openssl-dev
COPY . .
RUN cargo test --release rustpad-server
RUN cargo build --release rustpad-server
RUN cargo test --release
RUN cargo build --release
FROM rust:alpine as wasm
WORKDIR /home/rust/src