-
+ {% for point in edu.points %}
+
- {{ point }} + {% endfor %} +
diff --git a/app/.dockerignore b/app/.dockerignore new file mode 100644 index 0000000..317c734 --- /dev/null +++ b/app/.dockerignore @@ -0,0 +1,7 @@ +node_modules +dist +.git +.gitignore +*.md +.vscode +.idea diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..0ca39c0 --- /dev/null +++ b/app/.gitignore @@ -0,0 +1,3 @@ +node_modules +dist +.DS_Store diff --git a/app/Dockerfile b/app/Dockerfile new file mode 100644 index 0000000..039cba7 --- /dev/null +++ b/app/Dockerfile @@ -0,0 +1,15 @@ +FROM node:20-alpine + +WORKDIR /app + +COPY package.json yarn.lock ./ + +RUN yarn install --frozen-lockfile + +COPY . . + +RUN yarn build + +EXPOSE 3000 + +CMD ["yarn", "preview", "--host", "0.0.0.0"] diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..fa36e6f --- /dev/null +++ b/app/index.html @@ -0,0 +1,13 @@ + + +
+ + +CV/Resume Builder
+{{ proj.description }}
+ {% if proj.points %} +