mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 18:35:54 +00:00
15 lines
297 B
Text
15 lines
297 B
Text
FROM node:18.17.1-alpine
|
|
|
|
COPY package.json /app/package.json
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk --update add --virtual native-dep \
|
|
make gcc g++ python3 libgcc libstdc++ git && \
|
|
corepack yarn install && \
|
|
apk del native-dep
|
|
RUN apk add bash
|
|
|
|
COPY . /app
|
|
RUN npm install -g nodemon
|
|
CMD ["npm","test"]
|