Estou utilizando Ubuntu 20.04.
Arquivo Dockerfile:
FROM node:latest
MAINTAINER Caroline Bernardo Silva
COPY . /var/www
WORKDIR /var/www
RUN npm install
ENTRYPOINT ["npm","start"]
EXPOSE 3000
Executando o seguinte comando dentro do volume-exemplo, onde está o arquivo Dockerfile
docker build -f Dockerfile .
Está aparecendo o erro abaixo, mas o arquivo Dockerfile está na pasta.
unable to prepare context: unable to evaluate symlinks in Dockerfile path: lstat /home/kao/home/documents/kao/alura/docker/volume-exemplo/Dockerfile: no such file or directory
E se executo como:
docker build -f Dockerfile
Aparece o seguinte erro:
"docker build" requires exactly 1 argument.
See 'docker build --help'.
Usage: docker build [OPTIONS] PATH | URL | -
Build an image from a Dockerfile
Poderiam me ajudar?