This commit is contained in:
parent
37523d6855
commit
ede2fec794
@ -34,6 +34,9 @@ COPY --from=builder --chown=nextjs:nodejs /app/public ./public
|
|||||||
COPY --from=builder --chown=nextjs:nodejs /app/package.json ./package.json
|
COPY --from=builder --chown=nextjs:nodejs /app/package.json ./package.json
|
||||||
COPY --from=builder --chown=nextjs:nodejs /app/next.config.js ./next.config.js
|
COPY --from=builder --chown=nextjs:nodejs /app/next.config.js ./next.config.js
|
||||||
|
|
||||||
|
ARG GIT_REV
|
||||||
|
ENV GIT_REV ${GIT_REV}
|
||||||
|
|
||||||
USER nextjs
|
USER nextjs
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
ENV HOSTNAME "0.0.0.0"
|
ENV HOSTNAME "0.0.0.0"
|
||||||
|
@ -5,7 +5,8 @@ const nextConfig = {
|
|||||||
generateEtags: true,
|
generateEtags: true,
|
||||||
compress: true,
|
compress: true,
|
||||||
env: {
|
env: {
|
||||||
NEXT_PUBLIC_BUILD_ID: nextBuildId.sync({ dir: __dirname }),
|
NEXT_PUBLIC_BUILD_ID:
|
||||||
|
process.env.GIT_REV || nextBuildId.sync({ dir: __dirname }),
|
||||||
},
|
},
|
||||||
images: {
|
images: {
|
||||||
remotePatterns: [
|
remotePatterns: [
|
||||||
|
Loading…
Reference in New Issue
Block a user