Dockerizing

This commit is contained in:
Elijah Lucian
2021-03-20 16:52:56 -07:00
parent a2323321e3
commit a891fa6a50
8 changed files with 94 additions and 2 deletions

1
frontend/.dockerignore Normal file
View File

@@ -0,0 +1 @@
node_modules

19
frontend/.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#1f6fd0",
"activityBar.activeBorder": "#ee90bb",
"activityBar.background": "#1f6fd0",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#ee90bb",
"activityBarBadge.foreground": "#15202b",
"statusBar.background": "#1857a4",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#1f6fd0",
"titleBar.activeBackground": "#1857a4",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#1857a499",
"titleBar.inactiveForeground": "#e7e7e799"
},
"peacock.remoteColor": "#1857a4"
}

9
frontend/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:14
WORKDIR /usr/src/frontend
COPY . .
RUN npm i
EXPOSE 3000