diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..70c9812 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ +# Use a Node.js base image with npm pre-installed +FROM node:alpine + +# Set the working directory +WORKDIR /app + +# Copy package.json and package-lock.json +COPY package*.json ./ + +# Install dependencies +RUN npm install + +# Copy the rest of the application code +COPY . . + +# Expose the port your app will listen on +EXPOSE 3000 + +# Start the app +CMD ["node", "index.js"] \ No newline at end of file diff --git a/src/components/home_components/navigationbar.vue b/src/components/home_components/navigationbar.vue index 0877e9b..c173654 100644 --- a/src/components/home_components/navigationbar.vue +++ b/src/components/home_components/navigationbar.vue @@ -55,13 +55,13 @@ function fun_route(destination: string) {
Welcome to !
+Welcome to ESP!
Login or create a new Account to continue