NEW
This commit is contained in:
20
backend/image/arm/Dockerfile
Normal file
20
backend/image/arm/Dockerfile
Normal file
@@ -0,0 +1,20 @@
|
||||
FROM node:current-alpine
|
||||
|
||||
RUN apk add --virtual .build make g++ python3
|
||||
RUN apk add sqlite nano make mc rsync
|
||||
|
||||
|
||||
WORKDIR /app
|
||||
COPY build/package*.json ./
|
||||
|
||||
RUN npm install
|
||||
RUN npm install sqlite3 --unsafe-perm
|
||||
|
||||
COPY build/ ./
|
||||
|
||||
RUN ls -la
|
||||
|
||||
RUN apk del .build
|
||||
|
||||
EXPOSE 8080
|
||||
CMD ["./start"]
|
||||
Reference in New Issue
Block a user