mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2026-08-13 12:33:07 +02:00
13 lines
148 B
Docker
13 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"]
|