Fix docker build
Remove the element-call directory level which isn't necessary any more (accidentally removed the `cd element-call` in #794).
This commit is contained in:
parent
aa57cf039a
commit
824ed06f36
1 changed files with 3 additions and 3 deletions
|
@ -2,13 +2,13 @@ FROM --platform=$BUILDPLATFORM node:16-buster as builder
|
|||
|
||||
WORKDIR /src
|
||||
|
||||
COPY . /src/element-call
|
||||
RUN element-call/scripts/dockerbuild.sh
|
||||
COPY . /src
|
||||
RUN scripts/dockerbuild.sh
|
||||
|
||||
# App
|
||||
FROM nginxinc/nginx-unprivileged:alpine
|
||||
|
||||
COPY --from=builder /src/element-call/dist /app
|
||||
COPY --from=builder /src/dist /app
|
||||
COPY config/default.conf /etc/nginx/conf.d/
|
||||
|
||||
USER root
|
||||
|
|
Loading…
Reference in a new issue