mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-10-31 09:20:27 +00:00
14 lines
148 B
Docker
14 lines
148 B
Docker
FROM node:10-alpine
|
|
|
|
WORKDIR /RTL
|
|
|
|
COPY . /RTL
|
|
|
|
# Install dependencies
|
|
RUN npm install
|
|
|
|
EXPOSE 3000
|
|
|
|
#Run the app server
|
|
ENTRYPOINT ["node", "rtl"]
|