mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-10 20:52:42 +01:00
fix: update source paths
This commit is contained in:
parent
aae55cfe71
commit
685cfaf06a
@ -1,4 +1,4 @@
|
||||
FROM node:lts-alpine
|
||||
FROM node:lts-alpine AS builder
|
||||
|
||||
# needed for native packages (bcrypt, canvas)
|
||||
RUN apk add --no-cache \
|
||||
@ -11,14 +11,14 @@ RUN apk add --no-cache \
|
||||
pango-dev \
|
||||
giflib-dev
|
||||
|
||||
WORKDIR /usr/src/fosscord-api
|
||||
WORKDIR /usr/src/api
|
||||
|
||||
RUN npm rebuild bcrypt --build-from-source \
|
||||
&& npm install canvas --build-from-source
|
||||
|
||||
COPY api/package.json api/package-lock.json ./
|
||||
COPY util ../util
|
||||
RUN npm install
|
||||
RUN cd ../util && npm install && cd ../api && npm install
|
||||
|
||||
COPY api/ .
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user