Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
A
ajs_19_lesson100
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Анамария Морено
ajs_19_lesson100
Commits
6352e90d
Commit
6352e90d
authored
Mar 11, 2025
by
Анамария Морено
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docker configs
parent
995e3bfe
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
0 deletions
+20
-0
.dockerignore
.dockerignore
+7
-0
Dockerfile
Dockerfile
+12
-0
next.config.ts
next.config.ts
+1
-0
No files found.
.dockerignore
0 → 100644
View file @
6352e90d
Dockerfile
.dockerignore
node_modules
npm-debug.log
README.md
.next
.git
\ No newline at end of file
Dockerfile
0 → 100644
View file @
6352e90d
FROM
node:latest
WORKDIR
/app
COPY
. .
RUN
npm
install
RUN
npm run build
EXPOSE
3000
CMD
["npm", "start"]
FROM
nginx:1.23.3-alpine
COPY
nginx.conf /etc/nginx/nginx.conf
EXPOSE
80
EXPOSE
443
\ No newline at end of file
next.config.ts
View file @
6352e90d
...
...
@@ -2,6 +2,7 @@ import type { NextConfig } from "next";
const
nextConfig
:
NextConfig
=
{
/* config options here */
output
:
'standalone'
};
export
default
nextConfig
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment