Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
TJTS5901 K23 Template
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Startuplab
Courses
TJTS5901 Continuous Software Engineering
TJTS5901 K23 Template
Commits
81372069
Commit
81372069
authored
2 years ago
by
Teemu Autto
Browse files
Options
Downloads
Patches
Plain Diff
Stray curly braces moved to correct place. Noticed in propeadeutic.
parent
2ede253d
No related branches found
No related tags found
No related merge requests found
Pipeline
#12775
passed
2 years ago
Stage: build
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.devcontainer/devcontainer.json
+2
-1
2 additions, 1 deletion
.devcontainer/devcontainer.json
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
with
3 additions
and
2 deletions
.devcontainer/devcontainer.json
+
2
−
1
View file @
81372069
...
...
@@ -69,7 +69,7 @@
},
//
Use
'forwardPorts'
to
make
a
list
of
ports
inside
the
container
available
locally.
"forwardPorts"
:
[
5001
],
//
"forwardPorts"
:
[
5001
],
//
Uncomment
the
next
line
if
you
want
start
specific
services
in
your
Docker
Compose
config.
//
"runServices"
:
[],
...
...
@@ -90,5 +90,6 @@
//
"terraform"
:
"latest"
,
"azure-cli"
:
{
"version"
:
"lts"
}
}
}
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
81372069
...
...
@@ -31,7 +31,7 @@ ENV FLASK_RUN_PORT=${FLASK_RUN_PORT}
## Run Flask app when container started, and listen all the interfaces
## Note: CMD doesn't run command in build, but defines an starting command
## when container is started (or arguments for ENTRYPOINT).
CMD
flask run --host=0.0.0.0 # --port=${FLASK_RUN_PORT} --app=${FLASK_APP}
}
CMD
flask run --host=0.0.0.0 # --port=${FLASK_RUN_PORT} --app=${FLASK_APP}
## Examples for other commands:
## Run nothing, so that the container can be used as a base image
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment