--- /dev/null
+FROM node:17-bullseye
+
+# setup
+RUN mkdir -p /usr/src/website
+WORKDIR /usr/src/website
+
+RUN apt update && apt upgrade
+RUN apt install git
+
+COPY . /usr/src/website
+RUN npm install
+RUN npm run build
+
+EXPOSE 3000
+
+ENV NUXT_HOST=0.0.0.0
+ENV NUXT_PORT=3000
+
+CMD ["npm", "start"]
"start": "nuxt start",
"lint": "eslint . --ignore-path .gitignore --ext .vue,.js",
"lint:fix": "yarn lint --fix",
- "test": "jest"
+ "test": "jest",
+ "docker": "docker build -t website .",
+ "docker:run": "docker run -it -p 3000:3000 website"
},
"dependencies": {
"nuxt": "^2.15.8",
My name is Lukas and I love making simple tools.
My software usually just exists to make my daily workflow easier,
therefore you will find a lot of little single-use tools on my GitHub.
- I alos love ROM-hacking.
+ I also love ROM-hacking.
Contributions are always welcome! I hope you find some of my tools useful!
</article>
</template>