diff --git a/.env.example b/.env.example index bb27c1b..d7b139e 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -NEXT_PUBLIC_VERSION = "2.4.1" +NEXT_PUBLIC_VERSION = "2.5.0" NEXT_PUBLIC_API_URL = "http://192.168.1.20:8888/server" NEXT_PUBLIC_SERVER_SOCKET_URL = "ws://192.168.1.20:3023" diff --git a/Dockerfile b/Dockerfile index b494d6d..b0a73ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,8 @@ COPY --from=builder /app/public ./public COPY --from=builder /app/.next ./.next COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/package.json ./package.json -COPY --from=builder /app/next.config.js ./next.config.js -COPY --from=builder /app/app ./app +COPY --from=builder /app/next.config.mjs ./next.config.mjs +COPY --from=builder /app/src ./app EXPOSE 3000