Compare commits

..

No commits in common. "acf14fbd1d7bd4a97d9170f1a97a3a6f72bd8910" and "12583e6efbef336d1c1635652135d67311502c8a" have entirely different histories.

2 changed files with 6 additions and 11 deletions

View File

@ -52,10 +52,6 @@
margin-bottom: 50px;
}
.food-table {
max-width: 500px;
}
.content-wrapper {
width: 100%;
display: flex;

View File

@ -4,13 +4,12 @@ ENV LANG cs_CZ.UTF-8
WORKDIR /app
COPY package.json .
COPY yarn.lock .
COPY .env.production .
COPY tsconfig.json .
COPY src ./src
COPY package.json /app
COPY yarn.lock /app
COPY .env.production /app
RUN yarn install --frozen-lockfile
RUN yarn build
CMD [ "node", "/app/dist/index.js" ]
ADD ./dist /app
CMD [ "node", "/app/index.js" ]