I'm trying to make my first docker container
I installed dokcer-ce, following docker tutorial for ubuntu.
I create a folder and put my Dockerfile in it.
FROM docker/whalesay
RUN apt-get update && apt-get install -y figlet fortune && rm /var/apt/*
CMD figlet "Hy SUPINFO" | cowsay -n && /usr/games/fortune -a | cowsay
In this folder I made a :
sudo docker build -t whalesupinfo .
I always have this output
unable to prepare context: path "." not found
EDIT: I was in sshd, not working into it ?!