-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM node:14 | ||
|
||
# Copy the current directory contents into the container working directory | ||
COPY . /rc4community/ | ||
|
||
# install dependencies for client | ||
RUN npm install --prefix rc4community | ||
|
||
# Set the working directory | ||
WORKDIR /rc4community | ||
|
||
# Make port 8090 available to the world outside this container | ||
EXPOSE 8090 | ||
|
||
# Run the app when the container launches | ||
CMD ["npm", "run", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters