Merge pull request #29 from tcuc/dockerize

Dockerize
This commit is contained in:
Hannah Park 2022-01-19 11:20:45 -05:00 committed by GitHub
commit d6de70168e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 0 deletions

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM node
COPY . .
RUN npm install
EXPOSE 3000
CMD npm run start

View file

@ -28,5 +28,12 @@ $ npm install
$ npm run start $ npm run start
``` ```
_To build/run docker container:_
```bash
$ docker build -t notwordle .
$ docker run -d -p 3000:3000 notwordle
```
open http://localhost:3000 in browser.
### I'm looking for a junior developer role ### I'm looking for a junior developer role
Please feel free to contact me on [linkedin](https://www.linkedin.com/in/hannahpark1000/) and learn more about me [here](https://www.hannahmariepark.com/) Please feel free to contact me on [linkedin](https://www.linkedin.com/in/hannahpark1000/) and learn more about me [here](https://www.hannahmariepark.com/)