We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41a1728 commit 866581eCopy full SHA for 866581e
.devcontainer/devcontainer.json
@@ -3,7 +3,7 @@
3
{
4
"name": "Ubuntu",
5
"build": {
6
- "dockerfile": "Dockerfile",
+ "dockerfile": "../Dockerfile",
7
// Update 'VARIANT' to pick an Ubuntu version: focal, bionic
8
"args": { "VARIANT": "focal" }
9
},
.github/workflows/publish_container.yml
@@ -0,0 +1,17 @@
1
+name: Publish Docker
2
+on:
+ push:
+ branches:
+ - master
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
10
+ - uses: actions/checkout@master
11
+ - name: Publish to Registry
12
+ uses: elgohr/Publish-Docker-Github-Action@master
13
+ with:
14
+ name: algorithm-archivists/aaa-langs
15
+ username: ${{ github.actor }}
16
+ password: ${{ secrets.GITHUB_TOKEN }}
17
+ registry: ghcr.io
.devcontainer/Dockerfile renamed to Dockerfile
0 commit comments