Fix shared lib name
This commit is contained in:
parent
5946f9d96a
commit
6602aec191
1 changed files with 2 additions and 2 deletions
|
@ -6,12 +6,12 @@ ARG GLEAM_VERSION=v1.11.1
|
|||
FROM ghcr.io/gleam-lang/gleam:${GLEAM_VERSION}-erlang-alpine AS builder
|
||||
|
||||
# Add project code
|
||||
COPY ./common /build/common
|
||||
COPY ./shared /build/shared
|
||||
COPY ./client /build/client
|
||||
COPY ./server /build/server
|
||||
|
||||
# Install dependencies for all projects
|
||||
RUN cd /build/common && gleam deps download
|
||||
RUN cd /build/shared && gleam deps download
|
||||
RUN cd /build/client && gleam deps download
|
||||
RUN cd /build/server && gleam deps download
|
||||
|
||||
|
|
Loading…
Reference in a new issue