Fix dockerfile typo
Some checks failed
continuous-integration/drone Build is failing

This commit is contained in:
tobias 2024-06-06 08:25:00 +02:00
parent d9f17bb761
commit 32f763e62f

View File

@ -29,7 +29,7 @@ RUN pnpm install --production
# Copy build artifacts from the build stage
COPY --from=build /base/.next ./.next
COPY --from=build /base/public ./public
COPY --from=build /base/next.config.js ./
COPY --from=build /base/next.config.mjs ./
# Expose the port for the application
EXPOSE 3000