Skip to content
Permalink
15527e0344
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (10 sloc) 228 Bytes
FROM node:buster-slim
WORKDIR /opt/app
#Requirements
ADD package.json /opt/app
ADD server.js /opt/app
RUN npm install
EXPOSE 3000
RUN apt-get update && apt-get install -y ncat
ADD serverflag.txt /
CMD ["node", "server.js"]