diff --git a/Dockerfile b/Dockerfile index 54c3107..1516c54 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,27 +1,8 @@ FROM nginx:1.23.1 -LABEL org.opencontainers.image.source https://github.com/kevinmidboe/seasoned -# RUN mkdir -p /opt/seasoned -# WORKDIR /opt/seasoned - -# COPY src /opt/seasoned/src -# COPY public /opt/seasoned/public COPY public /usr/share/nginx/html -# COPY yarn.lock /opt/seasoned -# COPY package.json /opt/seasoned -# COPY server.ts /opt/seasoned -# COPY webpack.config.js /opt/seasoned COPY nginx.conf /etc/nginx/conf.d/default.conf -# COPY tsconfig**.json /opt/seasoned/ - -# RUN chown -R node:node /opt/seasoned - -# USER node - -# RUN yarn install - -# RUN yarn build EXPOSE 5000 -# CMD ["yarn", "start"] +LABEL org.opencontainers.image.source https://github.com/kevinmidboe/seasoned