diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..f9258ea --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +FROM node:16 + +# Create app directory +WORKDIR /app +ENV PORT 3001 +EXPOSE 3001 + +# Install app dependencies +# A wildcard is used to ensure both package.json AND package-lock.json are copied +# where available (npm@5+) +COPY package*.json ./ +ADD node_addons ./node_addons + +RUN yarn install + +# Bundle app source +COPY . . + + +CMD [ "yarn", "start" ] \ No newline at end of file diff --git a/components/footer.jsx b/components/footer.jsx index c48ab28..e070f50 100644 --- a/components/footer.jsx +++ b/components/footer.jsx @@ -8,17 +8,17 @@ export default function Footer(props) {
- Impressum + Impressum
- Datenschutz + Datenschutz
- AGBs + AGBs
diff --git a/components/navbar.jsx b/components/navbar.jsx index ee6d368..776a60a 100644 --- a/components/navbar.jsx +++ b/components/navbar.jsx @@ -144,10 +144,10 @@ class Navbar extends React.Component { className="noselect navbar navbar-expand-lg fixed-top" onToggle={this.toggle} > - - - - + + + +