Skip to content

Commit

Permalink
Update Dockerfile.txt
Browse files Browse the repository at this point in the history
Signed-off-by: Fabiana Campanari <[email protected]>
  • Loading branch information
FabianaCampanari committed Apr 10, 2024
1 parent 8c50731 commit eb58790
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .devcontainer/Dockerfile.txt
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
# Define a imagem base
FROM ghcr.io/containerbase/devcontainer:10.1.4

# Atualiza a lista de pacotes
RUN apt-get update

# Instala as dependências necessárias (substitua 'my-package' pelas suas dependências)
RUN apt-get install -y my-package

# Define o diretório de trabalho
WORKDIR /app

# Copia os arquivos do projeto para o contêiner
COPY . .

# Comando para iniciar o aplicativo (substitua 'my-command' pelo seu comando)
CMD ["my-command"]

0 comments on commit eb58790

Please sign in to comment.