Files
threetwo/Dockerfile
Rishi Ghan 1f8e0d6ff6 🔧 Fixes to AirDCPP searching WIP
1. Fixed the iterable for search results
2. Updated README
3. Listeners still a ?
2021-09-02 14:45:44 -07:00

19 lines
408 B
Docker

FROM node:12-alpine
LABEL maintainer="Rishi Ghan <rishi.ghan@gmail.com>"
RUN mkdir -p /usr/src/threetwo
WORKDIR /usr/src/threetwo
COPY package.json yarn.lock /usr/src/threetwo/
COPY nodemon.json /usr/src/threetwo
COPY jsdoc.json /usr/src/threetwo
RUN apk add --no-cache --virtual .build-deps git automake autoconf \
&& yarn \
&& apk del .build-deps
COPY . /usr/src/threetwo
EXPOSE 3050
CMD npm start