fix: some updates

This commit is contained in:
2026-03-17 18:45:25 +09:00
parent f5b8b86105
commit f7019403c4
7 changed files with 70 additions and 39 deletions

View File

@@ -1,15 +1,8 @@
FROM node:14
WORKDIR /tmp
COPY . .
RUN ["./build_script.sh"]
FROM arm32v7/node:14
FROM arm64v8/node:25-alpine
WORKDIR /usr/src/app
COPY --from=0 /tmp/build .
RUN apt-get update && apt install mariadb-client -y
COPY build .
RUN apk add mariadb-client
RUN npm install
EXPOSE 4000