About 11,400,000 results
Open links in new tab
  1. How do I set environment variables during the "docker build" …

    I'm trying to set environment variables in docker container during the build but without success. Setting them when using run command works but I need to set them during the build. Dockerfile FROM ...

  2. Difference between Build Solution, Rebuild Solution, and Clean …

    Jun 22, 2010 · Build solution will perform an incremental build: if it doesn't think it needs to rebuild a project, it won't. It may also use partially-built bits of the project if they haven't changed (I don't know how far it takes this) Rebuild solution will clean and then build the solution from scratch, ignoring anything it's done before. The difference between …

  3. How to generate Swagger.json file on build in .net 6.0?

    Sep 9, 2022 · Include the on-build generated file in the Swagger configuration to make all documentation references appear in the Swagger UI. B. Run the following commands to enable on-build Swagger JSON config file generation and set the path to the Web API project: dotnet new tool-manifest dotnet tool install --version 5.3.1 Swashbuckle.AspNetCore.Cli

  4. Error with requirements to build wheel - Stack Overflow

    Oct 20, 2023 · You'll need to complete a few actions and gain 15 reputation points before being able to upvote. Upvoting indicates when questions and answers are useful. What's reputation and how do I get it? Instead, you can save this post to reference later.

  5. Maven skip tests - Stack Overflow

    Jul 14, 2014 · 17 For the fastest build, to skip both compiling the test files and running the tests: mvn install -Dmaven.test.skip From the Maven Surefire Plugin docs: ... you can also use the maven.test.skip property to skip compiling the tests. maven.test.skip is honored by Surefire, Failsafe and the Compiler Plugin.

  6. How do I run a docker instance from a DockerFile?

    Mar 18, 2016 · 440 Download Dockerfile and Build a Docker Image Download the Dockerfile to a directory on your machine, and from that same directory, run the following docker build command. Make sure to replace image_name with what you would like to name your image. Docker image naming restrictions can be found here. docker build --tag 'image_name' .

  7. How can I install and use "make" in Windows? - Stack Overflow

    If the build system was created for Cygwin, it might not work in other environments without modifications (the Make language is the same, but escaping, path conversion are working differently, $ (realpath) fails on Windows paths, DOS bat files are started as shell scripts and many similar issues).

  8. cron - How do I schedule jobs in Jenkins? - Stack Overflow

    I added a new job in Jenkins, which I want to schedule periodically. From Configure job, I am checking the "Build Periodically" checkbox and in the Schedule text field added the expression: 15 1...

  9. How to change the build type to Release mode in cmake?

    Feb 23, 2016 · CMAKE_BUILD_TYPE Specifies the build type for make based generators. This specifies what build type will be built in this tree. Possible values are empty, Debug, Release, RelWithDebInfo and Min- SizeRel. This variable is only supported for make based generators.

  10. How to run a clean build for a particular project from a solution in ...

    Sep 7, 2015 · 62 Suppose I need to build a whole solution (which has multiple projects) in command line, is it possible to run a clean build for a particular projects and run an incremental build for the rest of the project? Thanks.

Refresh