diff --git a/Dockerfile b/Dockerfile index 8f887f5..ecac0d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,8 @@ FROM node:16-bullseye AS build ENV POSTGRES_URL='postgresql://fedisearch:passwd@postgres:5432/fedisearch?schema=public' \ NEXT_PUBLIC_MATOMO_URL='' \ - NEXT_PUBLIC_MATOMO_SITE_ID='' + NEXT_PUBLIC_MATOMO_SITE_ID='' \ + TZ='UTC' WORKDIR /srv COPY application/package*.json ./ COPY application/prisma ./prisma/ diff --git a/application/src/components/Footer.tsx b/application/src/components/Footer.tsx index bf6d880..e7e8fb7 100644 --- a/application/src/components/Footer.tsx +++ b/application/src/components/Footer.tsx @@ -3,7 +3,7 @@ import React from 'react' const Footer:React.FC = () => { return ( ) }