tinasaurus icon indicating copy to clipboard operation
tinasaurus copied to clipboard

docker

Open atar-axis opened this issue 1 year ago • 0 comments

Looks like I am too stupid to create the most simple Docker. Maybe you can help me somehow?

I would just like to run it to have a look

FROM node:20-bookworm

WORKDIR /app

COPY . .

RUN npm install

EXPOSE 3000
EXPOSE 80

CMD ["npm", "run", "tina"]

I run it with -p "80:80" -p "3000:3000" but nothing happens at localhost:3000, why is that?

atar-axis avatar Jul 10 '23 16:07 atar-axis