Skip to content

Commit

Permalink
Add frontend docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
juncevich committed Mar 14, 2021
1 parent eca801f commit 4a5cee2
Show file tree
Hide file tree
Showing 4 changed files with 18,779 additions and 1 deletion.
7 changes: 7 additions & 0 deletions frontend/.dockerignore
@@ -1 +1,8 @@
Dockerfile
.dockerignore
.gitignore
README.md
gradle
.gradle
build
node_modules
1 change: 1 addition & 0 deletions frontend/Dockerfile
Expand Up @@ -2,6 +2,7 @@ FROM node:alpine

WORKDIR /app
COPY package.json ./
COPY package-lock.json ./
RUN npm install
COPY ./ ./

Expand Down
2 changes: 1 addition & 1 deletion frontend/README.md
@@ -1,7 +1,7 @@
docker run -d --name rs_frontend -p3000:3000 6ea


docker build -t alexunc/rs-frontend .
docker build -t alexunc/rs-frontend:0.0.1 .

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

Expand Down

0 comments on commit 4a5cee2

Please sign in to comment.