Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ FROM node

WORKDIR /src

COPY package*.json .
COPY package*.json ./

RUN npm install
RUN apt update && apt upgrade -y && apt install nano -y

COPY . .

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const app = express()
const port = 3000

app.get('/', (req, res) => {
res.send('Olá minha imagem!')
res.send('Olá mundo! essa é minha primeira imagem.')
})

app.listen(port, () => {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading