add dockerfile, and build instuctions
This commit is contained in:
parent
da01ac10bb
commit
13e0663c0c
2 changed files with 15 additions and 0 deletions
7
Dockerfile
Normal file
7
Dockerfile
Normal file
|
@ -0,0 +1,7 @@
|
|||
FROM node
|
||||
|
||||
COPY . .
|
||||
RUN npm install
|
||||
|
||||
EXPOSE 3000
|
||||
CMD npm run start
|
|
@ -28,5 +28,13 @@ $ npm install
|
|||
$ npm run start
|
||||
```
|
||||
|
||||
_To build/run docker container:_
|
||||
```bash
|
||||
$ cd wordle
|
||||
$ 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
|
||||
Please feel free to contact me on [linkedin](https://www.linkedin.com/in/hannahpark1000/) and learn more about me [here](https://www.hannahmariepark.com/)
|
||||
|
|
Loading…
Add table
Reference in a new issue